round — Round off value


\begin{rail}
Round : 'round' '(' ( Scalar \vert Matrix ) ')' ;
\end{rail}
round returns the nearest integer value to the argument. If the argument is a matrix, the operation is done element by element. The returned value is somewhat dependant on the underlying math library function, though in general, if the difference between the function argument and the rounded result is exactly 0.5, then the result will be rounded to the nearest even integer.

Subsections